翻訳と辞書
Words near each other
・ Wall stress relaxation
・ Wall stud
・ Wall Tax Road, Chennai
・ Wall to Wall
・ Walkway Marathon
・ Walkway over the Hudson
・ Walkways Through the Wall
・ Walky Talky Hawky
・ Walków
・ WALL
・ Wall
・ Wall (Chinese constellation)
・ Wall (disambiguation)
・ Wall (play)
・ Wall (surname)
Wall (Unix)
・ Wall and crown knot
・ Wall and Hanover Building
・ Wall and tower
・ Wall Arch
・ Wall Around a Star
・ Wall bars
・ Wall box
・ Wall Brook Farm
・ Wall calendar
・ Wall Centre (Vancouver)
・ Wall chaser
・ Wall climb
・ Wall climbing at the 2011 Southeast Asian Games
・ Wall cloud


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Wall (Unix) : ウィキペディア英語版
Wall (Unix)

wall (an abbreviation of ''write to all'') is a Unix command-line utility that displays the contents of a file or standard input to all logged-in users. It is typically used by root to send out shutting down message to all users just before poweroff.
== Invocation ==
wall reads the message from standard input by default when the filename is omitted, that can be done by piping it with the echo command:

alice@sleipnir:~$ # `tty` to show the current terminal name
alice@sleipnir:~$ tty
/dev/pts/7
alice@sleipnir:~$ echo Remember to brush your teeth! | wall

The message may also be typed in much the same way cat is used; invoking wall by typing wall and pressing followed by a message, pressing and :

alice@sleipnir:~$ wall
Remember to brush your teeth!
^D

Using a here-string:

alice@sleipnir:~$ wall <<< 'Remember to brush your teeth!'

Reading from a file is also supported:

alice@sleipnir:~$ cat .important_announcement
Remember to brush your teeth!
alice@sleipnir:~$ wall .important_announcement # same as `wall !$`

All the commands above should display the following output on terminals that users allow write access to (see mesg(1)):

Broadcast Message from alice@sleipnir
(/dev/pts/7) at 16:15 ...
Remember to brush your teeth!


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Wall (Unix)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.